home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / dev / mui / bcc.lha / BCC / Examples / BCCopts / App.bh < prev    next >
Encoding:
Text File  |  1997-06-12  |  452 b   |  21 lines

  1. #include <proto/exec.h>
  2. #include <proto/muimaster.h>
  3. #include <libraries/mui.h>
  4. #include <proto/intuition.h>
  5.  
  6. Class App: MUIC_Application {
  7.  
  8.     Class Window *win;
  9.     Class Cycle *deftype, *verbose, *noversion, *forcetrans;
  10.     Class String *incdir, *tagbase;
  11.     Class Area *savedef, *save, *cancel, *createinitcl;
  12.     Class Menuitem *maboutmui, *mquit;
  13.  
  14.     Method LoadOpts();
  15.     Method SaveOpts();
  16.     Method SaveName();
  17.     Method CreateInitcl();
  18.     Method NewTagBase();
  19.  
  20. };
  21.